home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_SoftFocus_Factory_Def < prev    next >
Encoding:
Text File  |  2003-04-22  |  760 b   |  29 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for SoftFocus effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_SoftFocus():
  14.     return {
  15.         'Amount': 50,
  16.         'HaloVisibility': 50,
  17.         'GeneralSettings': {
  18.             'AutoActionMode': 0,
  19.             'ExecutionMode': 0
  20.             },
  21.         'Softness': 50,
  22.         'IncludeScatteredLight': 1,
  23.         'EdgeImportance': 50,
  24.         'HaloSize': 50
  25.         }
  26.  
  27. def Do(Environment):
  28.     App.Do( Environment, 'SoftFocus', Preset_SoftFocus())
  29.